home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE23 / CLINIC / NEWMSG.DPR < prev    next >
Text File  |  1997-04-25  |  192b  |  14 lines

  1. program NewMsg;
  2.  
  3. uses
  4.   Forms,
  5.   NewMsgU in 'NewMsgU.pas' {Form1},
  6.   MsgDlgs in 'MsgDlgs.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.